home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 July
/
07_02.iso
/
software
/
xq-xsetup
/
files
/
setup.exe
/
{app}
/
plugins
/
XQ Visio 2000 Information.xpl
< prev
next >
Wrap
Text File
|
2000-10-01
|
1KB
|
61 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="1"
"COUNT"="5"
"UIPATH"="Program Options\Microsoft Office\MS Office 2000\Visio 2000"
"NAME"="Visio 2000 Information"
"VERSION"="1.00"
"LANGUAGE"="VBScript"
"TEXT 1"="User"
"TEXT 2"="Company"
"TEXT 3"="Version"
"TEXT 4"="Product ID"
"TEXT 5"="Registered Key"
"DESCRIPTION 1"="Plugin displays Visio 2000 user and program registered information."
"DESCRIPTION 2"="NOTE: Information only; no changes possible."
"AUTHOR"="Ojatex@aol.com"
"CONTACTURL"="http://members.aol.com/ojatex/"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="For X-Setup program information, go to http://www.xteq.com."
"COMMENT 2"="Thanks to CptSiskoX for settings."
sP="HKLM\SOFTWARE\Visio\Visio 2000\"
sV1="RegisteredOwner"
sV2="RegisteredOrganization"
sV3="CurrentlyRegisteredVersion"
sV4="ProductID"
sV5="RegisteredPKey"
SUB Plugin_Initialize
s=RegReadValue(sP & sV1)
Call SetUIElement(1,s)
s=RegReadValue(sP & sV2)
Call SetUIElement(2,s)
s=RegReadValue(sP & sV3)
Call SetUIElement(3,s)
s=RegReadValue(sP & sV4)
Call SetUIElement(4,s)
s=RegReadValue(sP & sV5)
Call SetUIElement(5,s)
' end if
Call Disable
END SUB
SUB Plugin_CheckData(ElementIndex)
END SUB
SUB Plugin_Apply(ElementIndex,ElementSubIndex)
END SUB
SUB Plugin_Terminate
END SUB